*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Vazirmatn',sans-serif;
}
.faq-section{
    max-width:900px;
    margin:60px auto;
    padding:30px;
}

.faq-header{
    text-align:center;
    margin-bottom:40px;
}

.faq-header img{
    width:90px;
    margin-bottom:15px;
}

.faq-header h2{
    font-size:32px;
    color:#d4af37;
    margin-bottom:10px;
}

.faq-header p{
    color:#666;
}

.faq-item{
    margin-bottom:15px;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.faq-question{
    width:100%;
    border:none;
    outline:none;
    cursor:pointer;
    text-align:right;
    padding:20px;
    font-size:17px;
    font-weight:bold;
    background:#fff;
    transition:.3s;
    position:relative;
}

.faq-question:hover{
    background:#fafafa;
}

.faq-question::after{
    content:"+";
    position:absolute;
    left:20px;
    font-size:25px;
    color:#d4af37;
}

.faq-item.active .faq-question::after{
    content:"−";
}

.faq-answer{
    max-height:0;
    overflow:hidden;
    transition:max-height .4s ease;
    background:#fafafa;
}

.faq-answer p{
    padding:20px;
    line-height:2;
    color:#555;
}